Skip to content

Instantly share code, notes, and snippets.

@Alimammiya
Alimammiya / gate-cse-study-material.md
Last active September 12, 2026 04:45
Free GATE CSE Study Material for 2027 Aspirants: Download Subject wise Notes & PYQs

Free GATE CSE Study Material for 2027 Aspirants: Download Subject wise Notes & PYQs

Welcome to the comprehensive, community-driven resource repository for GATE Computer Science & Information Technology (CS & IT) 2027 aspirants. Securing a top rank in the Graduate Aptitude Test in Engineering (GATE) unlocks direct admissions to premier postgraduate programs (M.Tech/Ph.D.) at IITs, NITs, and IISc, alongside prestigious technical roles within leading PSUs.

This repository serves as a centralized documentation hub compiled from authoritative open-source archives, topper strategies, and verified learning pathways for your GATE CSE study material search.


Table of Contents

  1. Core Syllabus Structure & Weightage Analysis
@mikaeldui
mikaeldui / CachyOS Kernel for Fedora with Secure Boot.md
Last active September 12, 2026 04:40
CachyOS Kernel for Fedora with Secure Boot

image

CachyOS Kernel for Fedora with Secure Boot

Did you just install kernel-cachyos and got hit by bad shim signature when booting? Me too. This is how I fixed it.

First, make sure you have Secure Boot with mokutil --sb-state.

Note, there's a second way of doing this by using sbctl, but I didn't want to wipe my Secure Boot keys.

Need help? Feel free to leave a comment below, contact me (@mikaeldui) on the CachyOS Discord, or send me an email.

name explain-diff-html
description Use when the user asks for a rich explanation of a code change, diff, branch, or PR. Produces HTML output.

Explain Diff

Please make me a rich, interactive explanation of the specified code change.

It should have these sections:

@extremecoders-re
extremecoders-re / qemu-networking.md
Last active September 12, 2026 04:29
Setting up Qemu with a tap interface

Setting up Qemu with a tap interface

There are two parts to networking within QEMU:

  • The virtual network device that is provided to the guest (e.g. a PCI network card).
  • The network backend that interacts with the emulated NIC (e.g. puts packets onto the host's network).

Example: User mode network

@arvati
arvati / . Qemu networking using TAP Interface on Windows 10.md
Last active September 12, 2026 04:13 — forked from extremecoders-re/qemu-networking.md
Setting up Qemu with a tap interface

Setting up Qemu with a tap interface

There are two parts to networking within QEMU:

  • The virtual network device that is provided to the guest (e.g. a PCI network card).
  • The network backend that interacts with the emulated NIC (e.g. puts packets onto the host's network).

Example: User mode network

@voluntas
voluntas / ruri.md
Last active September 12, 2026 04:09
Ruri — PostgreSQL 向け SQL ツールチェーン

Ruri — PostgreSQL 向け SQL ツールチェーン

Caution

このツールは現在開発中で、オープンソースとして公開される予定はありません。 このツールは個人では無料で利用できるようにする予定です。

Important

https://ruri-play.shiguredo.app/ こちらで試せます

Ruri は PostgreSQL 向けの SQL ツールチェーンです。SQL クエリファイルから型安全なコードを生成する ruri generate、SQL Formatter の ruri fmt、SQL Linter の ruri lint、宣言的スキーママイグレーションの ruri migrate を提供します。

@chaudharyachint08
chaudharyachint08 / gate_da_material.md
Last active September 12, 2026 04:06
GATE(DA) Preparation Material

Probability and Statistics (with Counting/Combinatorics)

  • Mathematics (Class 11 & 12) - NCERT Relevant Chapters
    • Class 11 - Ch 1. Sets
    • Class 11 - Ch 2. Relations and Functions
    • Class 12 - Ch 1. Relations and Functions
    • Class 11 - Ch 6. Permutations and Combinations
@madhurimarawat
madhurimarawat / GATE-CSE-DS-Resources.md
Last active September 12, 2026 04:06
A collection of the best free GATE preparation resources for CSE & Data Science. Contributions are welcome!

📌 GATE Resources - CSE & Data Science

I have compiled all the resources that helped me in my GATE preparation, and I hope they help you too! 🚀

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rich Electric — Servicios Técnicos Profesionales</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, sans-serif; }
:root {
--azul: #0b3d91;

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.